runtime.moduledata.minpc (field)
7 uses
runtime (current package)
plugin.go#L100: if md.minpc <= entry && entry <= md.maxpc {
plugin.go#L119: name, "/", name2, "outside pc range:[", hex(md.minpc), ",", hex(md.maxpc), "], modulename=", md.modulename, ", pluginpath=", md.pluginpath)
symtab.go#L345: minpc, maxpc uintptr
symtab.go#L560: if datap.minpc != min || datap.maxpc != max {
symtab.go#L561: println("minpc=", hex(datap.minpc), "min=", hex(min), "maxpc=", hex(datap.maxpc), "max=", hex(max))
symtab.go#L736: if datap.minpc <= pc && pc < datap.maxpc {
symtab.go#L784: x := uintptr(pcOff) + datap.text - datap.minpc // TODO: are datap.text and datap.minpc always equal?
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |